Código fuente de 'Fecha simple.asp'

<html>

<head>
<title>Fecha simple - Códigos asp, programacion asp, descargas asp, rutinas asp</title>
</head>

<body style="font-family: Arial; font-size: 9pt">

<center><b><font face="Arial" size="3">Fecha simple</font></b></center><br><br>
<%
FechaDeHoy = "La fecha de hoy es: " & WeekdayName(Weekday(Weekday(Date()))) & ", " & _
MonthName(Month(date())) & " " & Day(Date()) & " de " & Year(Date())
%> <%=FechaDeHoy%>
    
    
</body></html>